gtkimmodule
svn path=/trunk/; revision=21416
+2008-09-17 Christian Persch <chpe@gnome.org>
+
+ Bug 552668 – format not a string literal and no format arguments in
+ gtkimmodule
+
+ * gtk/gtkimmodule.c: (gtk_im_module_load): Use %s with g_warning here.
+
2008-09-17 Christian Persch <chpe@gnome.org>
Bug 552667 – gtkimage containing gicon leaks memory
im_module->library = g_module_open (im_module->path, G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL);
if (!im_module->library)
{
- g_warning (g_module_error());
+ g_warning ("%s", g_module_error());
return FALSE;
}
!g_module_symbol (im_module->library, "im_module_create",
(gpointer *)&im_module->create))
{
- g_warning (g_module_error());
+ g_warning ("%s", g_module_error());
g_module_close (im_module->library);
return FALSE;